how to implement continous horizontal scroll in css

56

.scrolling-wrapper {
  overflow-x: scroll;
  overflow-y: hidden;
  white-space: nowrap;

  .card {
    display: inline-block;
  }
}

Comments

Submit
0 Comments